page.tsx 360 B

12345678910111213
  1. "use client";
  2. import { useParams } from "next/navigation";
  3. import { FC, PropsWithChildren } from "react";
  4. interface Props {}
  5. const GameListFlag: FC<PropsWithChildren<Props>> = (props) => {
  6. const params = useParams();
  7. console.log(`🎯🎯🎯🎯🎯-> in page.tsx on 10`, params);
  8. return <div>hello React</div>;
  9. };
  10. export default GameListFlag;